8adb67ef90b2640d606abe19fac18b98353d5c7e,plugins/cvs/cvs-plugin/src/com/intellij/cvsSupport2/application/CvsStorageSupportingDeletionComponent.java,CvsStorageSupportingDeletionComponent,shouldProcessEvent,#VirtualFileEvent#boolean#,112
Before Change
if (myAnotherProjectCommand) return false;
VirtualFile file = event.getFile();
if (disabled(file)) return false;
if (event.isFromRefresh()) return false;
if (isStorageEvent(event)) return false;
if (!isUnderCvsManagedModuleRoot(file)) return false;
return !(parentShouldBeUnderCvs && !parentIsUnderCvs(file));
}
After Change
return false;
}
final VirtualFile file = event.getFile();
if (disabled(file) || event.isFromRefresh() || isStorageEvent(event) || !isUnderCvsManagedModuleRoot(file)) {
return false;
}
return !parentShouldBeUnderCvs || parentIsUnderCvs(file);